home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / ada_met1.zip / PARSER_0.ADS < prev    next >
Text File  |  1990-06-21  |  2KB  |  42 lines

  1. --***************************************************************--
  2. --                                                               --
  3. --  TITLE:          AN ADA SOFTWARE METRIC                       --
  4. --                                                               --   
  5. --  MODULE NAME:    PACKAGE SPECIFICATION PARSER_0               --
  6. --  FILE NAME:      PARSER_0.ADS                                 --
  7. --                                                               --
  8. --  LAST MODIFIED:  02 MAR 90                                    --
  9. --                                                               --
  10. --  DESCRIPTION:  This package contains one function that makes  --
  11. --       up the highest level productions for our top-down,      --
  12. --       recursive descent parser.                               --
  13. --                                                               --  
  14. --  COPYRIGHT:  The Ada source code in this file is Copyright    --
  15. --              1990 by Source Translation & Optimization. There --
  16. --              are no restrictions to the use of this source    --
  17. --              code in any product or system that is released   --
  18. --              in non-source code form. Resale of this source   --
  19. --              code, without permission of STO, is a violation  --
  20. --              of our Copyright.                                --
  21. --                                                               --
  22. --                                                               --
  23. --  HELP:       For more information contact: Gregory Aharonian  --
  24. --              Source Translation & Optimization, P.O. Box 404  --
  25. --              Belmont, MA, 02178-0404            617-489-3727  --
  26. --***************************************************************--
  27.  
  28. package PARSER_0 is
  29.  
  30.   function COMPILATION return boolean;
  31.  
  32. --
  33. -- The following procedures are declared locally in the package body
  34. --
  35. --    function COMPILATION_UNIT   return boolean;
  36. --    function CONTEXT_CLAUSE     return boolean;
  37. --    function BASIC_UNIT         return boolean;
  38. --    function LIBRARY_UNIT       return boolean;
  39. --    function SUBUNIT            return boolean;
  40.  
  41. end PARSER_0;
  42.